home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / soseng22.arj / SOSFUNC.ASM < prev    next >
Assembly Source File  |  1993-10-25  |  3KB  |  142 lines

  1.    .MODEL medium
  2.    .CODE
  3.  
  4.    public seonlog, seofflog, seonread, seoffread, seonwrite, seoffwrite,
  5.    public seonpntr, seoffpntr, seonmem, seoffmem, seonfile,
  6.    public seofffile, seondir, seoffdir, seonfa, seofffa, seoncl, seoffcl,
  7.    public seontime, seofftime, seonclose, seoffclose
  8.  
  9.    seonlog        proc
  10.    mov            ax,6101h
  11.    int            21h
  12.    ret
  13.    seonlog        endp
  14.  
  15.    seofflog       proc
  16.    mov            ax,6102h
  17.    int            21h
  18.    ret
  19.    seofflog       endp
  20.  
  21.    seonread       proc
  22.    mov            ax,6103h
  23.    int            21h
  24.    ret
  25.    seonread       endp
  26.  
  27.    seoffread      proc
  28.    mov            ax,6104h
  29.    int            21h
  30.    ret
  31.    seoffread      endp
  32.  
  33.    seonwrite      proc
  34.    mov            ax,6105h
  35.    int            21h
  36.    ret
  37.    seonwrite      endp
  38.  
  39.    seoffwrite     proc
  40.    mov            ax,6106h
  41.    int            21h
  42.    ret
  43.    seoffwrite     endp
  44.  
  45.    seonpntr       proc
  46.    mov            ax,6107h
  47.    int            21h
  48.    ret
  49.    seonpntr       endp
  50.  
  51.    seoffpntr      proc
  52.    mov            ax,6108h
  53.    int            21h
  54.    ret
  55.    seoffpntr      endp
  56.  
  57.    seonmem        proc
  58.    mov            ax,6109h
  59.    int            21h
  60.    ret
  61.    seonmem        endp
  62.  
  63.    seoffmem       proc
  64.    mov            ax,610Ah
  65.    int            21h
  66.    ret
  67.    seoffmem       endp
  68.  
  69.    seoncl         proc
  70.    mov            ax,610Bh
  71.    int            21h
  72.    ret
  73.    seoncl         endp
  74.  
  75.    seoffcl        proc
  76.    mov            ax,610Ch
  77.    int            21h
  78.    ret
  79.    seoffcl        endp
  80.  
  81.    seonfile       proc
  82.    mov            ax,610Dh
  83.    int            21h
  84.    ret
  85.    seonfile       endp
  86.  
  87.    seofffile      proc
  88.    mov            ax,610Eh
  89.    int            21h
  90.    ret
  91.    seofffile      endp
  92.  
  93.    seonclose      proc
  94.    mov            ax,610Fh
  95.    int            21h
  96.    ret
  97.    seonclose      endp
  98.  
  99.    seoffclose     proc
  100.    mov            ax,6110h
  101.    int            21h
  102.    ret
  103.    seoffclose     endp
  104.  
  105.    seondir        proc
  106.    mov            ax,6111h
  107.    int            21h
  108.    ret
  109.    seondir        endp
  110.  
  111.    seoffdir       proc
  112.    mov            ax,6112h
  113.    int            21h
  114.    ret
  115.    seoffdir       endp
  116.  
  117.    seonfa         proc
  118.    mov            ax,6113h
  119.    int            21h
  120.    ret
  121.    seonfa         endp
  122.  
  123.    seofffa        proc
  124.    mov            ax,6114h
  125.    int            21h
  126.    ret
  127.    seofffa        endp
  128.  
  129.    seontime       proc
  130.    mov            ax,6115h
  131.    int            21h
  132.    ret
  133.    seontime       endp
  134.  
  135.    seofftime      proc
  136.    mov            ax,6116h
  137.    int            21h
  138.    ret
  139.    seofftime      endp
  140.  
  141.    END
  142.